home *** CD-ROM | disk | FTP | other *** search
- on(release){
- if(_root.soundControlCounter == 1)
- {
- _root.global_sound.setVolume(100);
- _root.introLoopVolume = 0;
- _root.introLoop.setVolume(_root.introLoopVolume);
- _root.ingameLoopSoundVolume = 0;
- _root.ingameLoopSound.setVolume(_root.ingameLoopSoundVolume);
- }
- if(_root.soundControlCounter == 2)
- {
- _root.global_sound.setVolume(0);
- }
- if(_root.soundControlCounter == 3)
- {
- _root.global_sound.setVolume(100);
- _root.introLoop.setVolume(_root.defaultIntroLoopVolume);
- _root.ingameLoopSound.setVolume(_root.defautlIngameLoopSoundVolume);
- }
- _root.soundControlCounter = _root.soundControlCounter + 1;
- if(_root.soundControlCounter >= 4)
- {
- _root.soundControlCounter = 1;
- }
- this.text.gotoAndStop(_root.soundControlCounter);
- this.gotoAndStop(_root.soundControlCounter);
- }
-